home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / UTILITY1 / MSWLGO35.ZIP / LOGOLIB / LISTTOAR < prev    next >
Text File  |  1991-08-29  |  301b  |  15 lines

  1. to listtoarray :list [:origin 1]
  2. local "array
  3. make "array (array count :list :origin)
  4. listtoarray1 :list :origin
  5. output :array
  6. end
  7.  
  8. to listtoarray1 :list :index
  9. if emptyp :list [stop]
  10. setitem :index :array first :list
  11. listtoarray1 bf :list :index+1
  12. end
  13.  
  14. bury [listtoarray listtoarray1]
  15.